home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / PRINTF.H < prev    next >
C/C++ Source or Header  |  1994-12-12  |  162b  |  12 lines

  1. #ifdef __EMX__
  2.  
  3. int    puts(char *s);
  4. int    printf(const char *fmt,...);
  5. int    sprintf(char * buf, const char *fmt, ...);
  6.  
  7. #else
  8.  
  9. #include  <stdio.h>
  10.  
  11. #endif
  12.